home *** CD-ROM | disk | FTP | other *** search
/ Windows Game Programming for Dummies (2nd Edition) / WinGamProgFD.iso / mac / DirectX SDK / DXSDK / include / activecf.h next >
Text File  |  2001-10-08  |  631b  |  20 lines

  1. //------------------------------------------------------------------------------
  2. // File: ActiveCf.h
  3. //
  4. // Desc: Contains the data formats for the transfer of VfW4 filters via the
  5. //       clipboard.
  6. //
  7. // Copyright (c) 1992-2001, Microsoft Corporation.  All rights reserved.
  8. //------------------------------------------------------------------------------
  9.  
  10.  
  11. #define CFSTR_VFW_FILTERLIST "Video for Windows 4 Filters"
  12.  
  13. typedef struct tagVFW_FILTERLIST{
  14.     UINT  cFilters;                     // number of CLSIDs in aClsId
  15.     CLSID aClsId[1];                    // ClsId of each filter
  16.     
  17. } VFW_FILTERLIST;
  18.  
  19.  
  20.